home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-puzzle.dcr / 00074_picturebutton.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  758 b   |  40 lines

  1. on mouseEnter
  2.   set the blend of sprite 27 to 100
  3.   set the blend of sprite 28 to 100
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave
  8.   if the stillDown = 0 then
  9.     set the blend of sprite 27 to 70
  10.     set the blend of sprite 28 to 70
  11.   end if
  12.   cursor(-1)
  13. end
  14.  
  15. on mouseWithin
  16.   set the blend of sprite 27 to 100
  17.   set the blend of sprite 28 to 100
  18. end
  19.  
  20. on mouseDown
  21.   set the blend of sprite 27 to 100
  22.   set the blend of sprite 28 to 100
  23.   sprite(47).visible = 1
  24.   sprite(48).visible = 1
  25. end
  26.  
  27. on mouseUp
  28.   set the blend of sprite 27 to 70
  29.   set the blend of sprite 28 to 70
  30.   sprite(47).visible = 0
  31.   sprite(48).visible = 0
  32. end
  33.  
  34. on mouseUpOutSide
  35.   set the blend of sprite 27 to 70
  36.   set the blend of sprite 28 to 70
  37.   sprite(47).visible = 0
  38.   sprite(48).visible = 0
  39. end
  40.